Skip to content
  • 0 Votes
    12 Posts
    4k Views
    zareenZ
    Why companies invest in projects with negative NPV? MGT201 Because there is hidden value in each project Because there is hidden value in each project [image: 92eEyyE.png] bolded text At the termination of project, which of the following needs to be considered relating to project assets? Salvage value Book value Intrinsic value Fair value When a bond is sold at discount? MGT201 The coupon rate is greater than the current yield and the current yield is greater than yield to maturity [image: U836pqW.png] Which of the followings is (are) type (s) of problems associated with Capital Rationing? MGT201 Size Difference of cash flows [image: EXIxrIK.png] If dividends of preferred shareholders remain constant and required return decreases then what will be impact on present value of preferred shares? MGT201 Present Value of preferred share will decrease [image: mfS1dDg.png] If Net Present Value technique is used, what is the ranking criterion for projects? MGT201 Choose the highest NPV ![0_1575038179748_3924def0-50fd-465a-8691-1fc74da74e96-image.png](Uploading 100%) Which one of the followings is type of problem associated with Capital Rationing? MGT201 Indifferent size of cash flows Company A is analyzing some projects based on payback period amongst which one project will be selected. In your opinion which project is best for the company? MGT201 Project S with pay back period of 4.5 years [image: mmzDQH3.png] The value of the bond is NOT directly tied to the value of which of the following assets? MGT201 Real assets of the business Real assets of the business Liquid assets of the business Fixed assets of the business Lon term assets of the business [image: 4mowawe.png] A bond has 4.3% interest yield and 16.9% Yield to Maturity. What would Capital Gains of the bond? MGT201 12.6% [image: PTfZU4F.png] Capital budgeting techniques help management in _______. MGT201 Assessing financial viability of projects [image: 4Cq5JWw.png] What is difference between shares and bonds? MGT201 Bonds are representing ownership whereas shares are not Shares are representing ownership whereas bonds are not Shares and bonds both represent equity Shares and bond both represent liabilities [image: oK8Osu7.png]
  • FRL101 Quiz No 2 Solution and Discussoion

    Solved Freelancing frl101 quiz 2 solution discussion
    36
    1 Votes
    36 Posts
    23k Views
    zareenZ
    [image: 3utp4wD.png]
  • 1 Votes
    12 Posts
    3k Views
    mehwishM
    Thanks for sharing 😀
  • 0 Votes
    12 Posts
    3k Views
    zareenZ
    https://youtu.be/fTCDllITlpI
  • 0 Votes
    12 Posts
    3k Views
    zaasmiZ
    @zareen said in EDU701 Quiz 2 Solution and Discussion: Which of these is not a risk factor for burnout? The correct option is Cynicism. Here is the breakdown of why, based on the standard psychological definitions of burnout (often using the Maslach Burnout Inventory): Work overload: This is a major risk factor (cause). When the demands of the job exceed your capacity to recover, burnout begins. Lack of control: This is also a significant risk factor (cause). Feeling like you have no say in your schedule, assignments, or resources leads to high stress. Cynicism: This is a symptom (result) of burnout, not a risk factor. It is the psychological distance or negative attitude a person develops toward their job after they have already begun to burn out. Summary Risk factors are the causes (overload, lack of control, unfairness), while cynicism is one of the outcomes or signs that burnout is occurring.
  • 0 Votes
    13 Posts
    3k Views
    zaasmiZ
    Actually, there might be a bit of confusion in that interpretation. In the context of computer science and storage management exams (specifically regarding Data Center Management or Storage Area Networks), the question is usually asking which technology provides the highest performance and speed. The correct answer remains Array-based Migration. Why “None of the above” is incorrect in this context: While you are right that a prompt needs a clear question, in standardized testing for IT certifications (like EMC, NetApp, or VMware), this specific sentence structure is used to test your knowledge of migration overhead. Here is the technical comparison of why Array-based is the fastest: Host-based: Slowest because it consumes the host’s CPU/memory and moves data across the standard network. Appliance/Fabric-based: Fast, but requires an extra layer of hardware in the middle which can create a bottleneck. Array-based: Fastest because it moves data directly from one storage controller to another at the block level, usually over high-speed Fibre Channel links, with zero impact on the host or the application. If you are filling this out for a quiz, the system expects you to identify the most efficient technology from the list provided.
  • 0 Votes
    14 Posts
    7k Views
    M
    XML Quiz For each question, choose the best choice out of the given choices. What does XML stand for? A. X-Markup Language B. eXtra Modern Link C. Example Markup Language D. eXtensible Markup Language XML’s goal is to replace HTML A. True B. False What does DTD stand for? A. Direct Type Definition B. Document Type Definition C. Document Type Declaration Is this a correct XML document? Students Teacher Reminder We are at Software Park, Thailand A. Yes **B. No** Which statement is true? A. All XML elements must have a closing tag B. All XML documents must have a DTD or an XML schema C. All XML elements must be lowercase D. All of the statements are true Which statement is true? A. XML tags are case sensitive B. XML elements must be properly nested C. XML documents must have the root element D. All the statements are true XML preserves white spaces A. True B. False Is this a correct XML document? Students Teacher A. No B. Yes XML elements cannot be empty A. True B. False Which is not a correct name for an XML element? A. B. C. <1dollar> D. All 3 names are incorrect Which is not a correct name for an XML element? A. B. C. D. All 3 names are incorrect Which is not a correct name for an XML element? A. B. C. For the XML parser to ignore a certain section of your XML document, which syntax is correct? A. <xml:CDATA[ Text to be ignored]> B. Text to be ignored C. XML is a subset of SGML A. True B. False XML attributes must be in double quotes A. True B. False XML attributes must be assigned values A. True B. False The Document Type Definition must be stored in an external file A. True B. False What can XML do? A. The standard for automating data exchange between systems B. The standard for displaying data on the Web C. The standard for a cross-platform programming language Which is false? A. XML is used to describe only structured data B. XML is used to only on the Internet C. XML is used to represent only simple data D. All of the above Which of the following comments are not well formed? A. B. C. D. Provided that the file x.dtd has the following contents. Which of the xml files are valid? a. text b. Element can contain c. Sample How can you declare in a DTD that the element x contains either the element a or the element b, but not both of them a) b) c) d) It is not possible to declare in a DTD that one element contains either the element a or the element b, but not both of them How can you declare in a DTD that the element x contains the element a, or the element b, or both of them in the sequence a b. a) b) c) d) None of the declarations above does solve the problem. How can you declare in a DTD that the empty element x has either the attribute a or the attribute b (or both of them). The attributes contain any value. a) b) c) d) It is not possible to make the presence of one attribute depend on another attribute How can you in a DTD declare that the element x contains both attributes a and b and that the order of them has to be ab? The attributes can contain any value a) b) c) b CDATA #REQUIRED> d) It is not possible to specify the order of attributes in a DTD. The order of attributes does not matter in XML. e) It is not possible to specify the order of attributes in a DTD. The order of attributes can be specified only in an XML schema. Valid names of elements and attributes start with a letter, an underscore or a colon, the following allowed characters are letters, numeric characters, colon, underscore, dot and hyphen (minus). Names which start with “xml” (in any case) are reserverd for W3C. The colon has a special meaning with namespaces and should not be used with any other semantic.
  • 0 Votes
    19 Posts
    3k Views
    zaasmiZ
    said in CS310 Quiz 2 Solution and Discussion: If we want to show all the session variable values for a user session then following code will be used. To see every variable currently stored in a user’s session, you use the print_r() or var_dump() function on the $_SESSION superglobal. These functions allow you to output the entire contents of the associative array in a readable format, which is extremely helpful for debugging. The Code <?php session_start(); // You must always start the session first // Option 1: Using print_r (Cleanest for reading) echo "<pre>"; print_r($_SESSION); echo "</pre>"; // Option 2: Using var_dump (Provides more detail like data types) var_dump($_SESSION); ?> Why use <pre>? When using print_r() or var_dump(), wrapping the code in HTML <pre> (preformatted text) tags is a “pro-tip.” It forces the browser to display the array with proper indentation and line breaks, making it much easier for you to read than a single long line of text. Common Session Commands Summary Purpose Command Start/Resume session_start(); Show All Values print_r($_SESSION); Check if a variable exists isset($_SESSION['key']); Clear all values session_unset(); Would you like me to show you how to loop through the session variables using a foreach loop if you want to format the output as a list?
  • 0 Votes
    2 Posts
    3k Views
    mehwishM
    Qno 1: Function Overloading Mean… 1 ) The name of the function will Remain the same but its behavior may change. The Name of the Function will not remain same but its bahavior will not be change. Making a function inline. Function Name can be change. Qno 2: sorry i forget. Qno 3: For accessing data member we use … operator. Plus+. Multiplication* Dot. Division/. Qno4: Constructor has… No name. The same name as of class. The same Name as Data Member. Return type. Qno5: Free Function is Avaliable in… header file. Conio.h Iostream.h String.h Stdlib.h Qno6: New operator can Be used for… Only integer Data type. Only char and integer data type. Integer, flot, char and double data type. Dot operator. Qno7: The Malloc function takes…Arguments. Two Three Four One. Qno8: Macros are categorized into…types. One Four Two None of the given options. Qno9: class can be define as… A class include both data member as well as Function to manipulate that data. A class include only object, A class include both object and structure. A class does not include Data member and Function. Qno10: A class is… A built in Function. A user Define data type. An Array. A member function.
  • 1 Votes
    16 Posts
    6k Views
    mehwishM
    @zareen said in CS609 Quiz No.2 Solution and Discussion: What are the 3 types of viruses? Resident Virus. Resident viruses live in your RAM memory. … Multipartite Virus. … Direct Action Virus. … Browser Hijacker. … Overwrite Virus. … Web Scripting Virus. … Boot Sector Virus. … Macro Virus.
Reputation Earning
How to Build a $1,000/Month World CUP LIVE Matches Live Cricket Streaming
Ads
File Sharing
Stats

0

Online

3.0k

Users

2.8k

Topics

8.5k

Posts
Popular Tags
Online User
| |